Web Report
i have been trying to use FastReports On ASP.NET.
I managed to open a report when that had its own dataset. Now I am trying to open a report and pushing data from my ASP application. using this code:
this.WebReport2.ReportFile = this.Server.MapPath("~/Report2.frx");
this.WebReport2.Report.RegisterData(new ReportHandler().getData(), "ClientData");
this.WebReport2.Report.GetDataSource("ClientData").Enabled = true;
this.WebReport2.Prepare();
But I cannot manage to make Report2.frx refer to the Data I am passing to it.
I tried [ClientData.FirstName1] and also [ClientData.TableName.FristName1]
How should I refer to the Data i am Passing from the Designer?
I managed to open a report when that had its own dataset. Now I am trying to open a report and pushing data from my ASP application. using this code:
this.WebReport2.ReportFile = this.Server.MapPath("~/Report2.frx");
this.WebReport2.Report.RegisterData(new ReportHandler().getData(), "ClientData");
this.WebReport2.Report.GetDataSource("ClientData").Enabled = true;
this.WebReport2.Prepare();
But I cannot manage to make Report2.frx refer to the Data I am passing to it.
I tried [ClientData.FirstName1] and also [ClientData.TableName.FristName1]
How should I refer to the Data i am Passing from the Designer?